home *** CD-ROM | disk | FTP | other *** search
/ GFX Sensations 1 / Graphic Sensations - Volume 1.iso / tools / amiga / 3d_tools / irit40s.lha / Irit / prsr_lib / amiga.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-12-30  |  519 b   |  19 lines

  1. /* Default name for Irit message port */
  2. #define IRIT_SERVER_PORT "Irit"
  3.  
  4. /* These are the names of two environment variables created and destroyed on
  5.    the fly. They're used to make sure that the server and the client know of
  6.    each other's existence. yes, I know it's a kludge.
  7. */
  8. #define SERVER_VAR    "IritRunning"
  9. #define CLIENT_VAR    "ClientRunning"
  10.  
  11. /* max number of bytes contained in a message */
  12. #define MSGSIZE 128
  13.  
  14. struct IritMessage {
  15.   struct Message msg;
  16.   short         nbytes;
  17.   unsigned char     txt[MSGSIZE];
  18. };
  19.